home *** CD-ROM | disk | FTP | other *** search
- property pSp, pMouseOver, pMouseDown, pMouseUp, pRolloverYN, pRolloverSound, pMouseDownSound, pRollSnd, pDownSnd, pMouseUpOutside
-
- on getPropertyDescriptionList
- d = [:]
- addProp(d, #pMouseOver, [#default: "roll", #format: #string, #comment: "Second name of member rollover"])
- addProp(d, #pMouseDown, [#default: "dn", #format: #string, #comment: "Second name of meber for down"])
- addProp(d, #pMouseUpOutside, [#default: "reg", #format: #string, #comment: "Second name of meber for up outside"])
- addProp(d, #pMouseUp, [#default: "reg", #format: #string, #comment: "Second word of mouse up"])
- addProp(d, #pRolloverYN, [#default: 1, #format: #boolean, #comment: "Do you want a rollover?"])
- addProp(d, #pRolloverSound, [#default: 0, #format: #boolean, #comment: "Do you want a sound?"])
- addProp(d, #pMouseDownSound, [#default: 0, #format: #boolean, #comment: "Dou you want a mouse down sound?"])
- addProp(d, #pRollSnd, [#default: "name", #format: #string, #comment: "put in the name of roll sound"])
- addProp(d, #pDownSnd, [#default: "name", #format: #string, #comment: "put in down sound"])
- return d
- end
-
- on beginSprite me
- pSp = me.spriteNum
- end
-
- on mouseUp
- button(pMouseUp)
- end
-
- on mouseDown
- button(pMouseDown)
- end
-
- on mouseEnter
- if pRolloverYN then
- button(pMouseOver)
- if pRolloverSound then
- puppetSound(1, pRolloverSound)
- end if
- end if
- end
-
- on mouseLeave
- if pRolloverYN then
- button(pMouseUp)
- if pMouseDownSound then
- puppetSound(1, pMouseDownSound)
- end if
- end if
- end
-
- on mouseUpOutSide
- button(pMouseUp)
- end
-
- on button type
- a = the memberNum of sprite pSp
- b = member(a).name
- c = word 1 of b
- newBut = c && type
- set the memberNum of sprite pSp to member(newBut)
- end
-
- on getBehaviorDescription
- description = "this is the button script with sounds,rollovers, shit like that"
- return description
- end
-